/* ================================================
   SLIDER TERMOACUMULADOR - SUPORTE PRIME
   ================================================ */


.termo-slider-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
termo
.termo-slider-title {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

/* Titulo do slider termo (corrige centralização e cor do strong) */
.termo-slider-section h2 {
  text-align: center !important;
  color: #333;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.termo-slider-section h2 strong {
  color: #f30901 !important; /* azul */
}

.termo-slider-section .termo-slider-subtitle {
  text-align: center !important;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}


.termo-slider-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* WRAPPER */
.termo-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

/* CONTAINER */
.termo-slider-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px; /* 👈 espaço controlado entre cards */
}

/* SLIDE (controla largura REAL) */
.termo-slide {
  flex: 0 0 23%; /* 👈 mais estreito e equilibrado */
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .termo-slide { flex: 0 0 32%; }
}

@media (max-width: 992px) {
  .termo-slide { flex: 0 0 48%; }
}

@media (max-width: 576px) {
  .termo-slide { flex: 0 0 100%; }
  .termo-slider-wrapper { padding: 0 40px; }
}

/* CARD */
.termo-slide-inner {
  width: 100%; /* 👈 ocupa todo o slide (sem espaços estranhos) */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.termo-slide-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* BADGES */
.termo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f1c80f, #f39212);
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(241,196,15,0.4);
}

.termo-badge-tech {
  background: linear-gradient(135deg, #3498db, #2980b9);
  box-shadow: 0 3px 10px rgba(52,152,219,0.4);
}

/* IMAGEM */
.termo-slide-inner img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 20px;
  padding-bottom: 0px;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

/* CONTEÚDO */
.termo-slide-content {
  padding: 20px;
  padding-top: 0px;
}

.termo-slide-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  margin-top: 0px;
}

.termo-tech-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.termo-tech-specs span {
  background: #f0f4f8;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.termo-tech-specs span i {
  color: #3498db;
}

.termo-slide-content p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.termo-slide-content {
  text-align: left;
}

.termo-slide-content .envor-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}


/* NAVEGAÇÃO */
.termo-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 5px;
}

/* Alinhar botões (esquerda/direita) com o mesmo comportamento do slider AR */
.termo-slider-nav .termo-nav-btn.termo-prev {
  margin-left: 0 !important;
  order: 0;
}

.termo-slider-nav .termo-nav-btn.termo-next {
  margin-right: 0 !important;
  order: 1;
}




.termo-nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(231,76,60,0.3);
}

.termo-nav-btn:hover {
  background: #c0392b;
  transform: scale(1.1);
}

/* DOTS */
termo.ac-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.termo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.termo-dot:hover {
  background: #bbb;
}

.termo-dot.active {
  background: #e74c3c;
  transform: scale(1.2);
}
/* Efeito lupa da imagem */
.termo-slide img {
    width: 100%;
    transition: transform 0.4s ease;
}

.termo-slide img:hover {
    transform: scale(2.1); /* aumenta 10% */
}